home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
cthread.arc
/
C_COURSE.BAT
next >
Wrap
DOS Batch File
|
1986-11-07
|
844b
|
32 lines
echo Basic preprocessor statements
thread #include #define
echo Basic variables
thread char escape int float double
thread long unsigned []
echo Storage types
thread auto register extern static
echo The soul of C
thread function
echo Flow of control
thread if else do while for switch case break continue
echo Operators
thread precedence
thread + - / * += -= *=
thread ++ --
echo Logical operators
thread "==" != !
thread && "||" "|" & ?:
thread ">" "<" ">=" "<="
echo Pointers and structures
thread pointers * &
thread struct . "->"
echo Command line arguments
thread argc argv
echo Input - Output
thread getc getchar putchar printf scanf fscanf
echo Standard library
thread strlen strcpy strcmp atoi
echo Dynamic memory
thread malloc calloc () sizeof
echo Preprocessor II
thread #ifdef #undef #endif isalpha